home *** CD-ROM | disk | FTP | other *** search
/ Personal Computer World 2009 February / PCWFEB09.iso / Software / Linux / Kubuntu 8.10 / kubuntu-8.10-desktop-i386.iso / casper / filesystem.squashfs / usr / bin / safestartkde < prev    next >
Text File  |  2008-10-24  |  327b  |  18 lines

  1. #!/bin/sh
  2. #
  3. #  FAILSAFE KDE STARTUP SCRIPT ( 4.1.2 (KDE 4.1.2) )
  4. #
  5.  
  6. # This script launches KDE with some potentionally unstable parts (like
  7. # compositing effects) disabled.
  8.  
  9. # General failsafe flag
  10. KDE_FAILSAFE=1
  11. export KDE_FAILSAFE
  12.  
  13. # Disable KWin's compositing
  14. KWIN_COMPOSE=N
  15. export KWIN_COMPOSE
  16.  
  17. exec /usr/bin/startkde "$@"
  18.